翻訳と辞書
Words near each other
・ Inductive data type
・ Inductive dimension
・ Inductive discharge ignition
・ Inductive effect
・ Inductive functional programming
・ Inductive logic programming
・ Inductive output tube
・ Inductive probability
・ Inductive programming
・ Inductive pump
・ Inductive reasoning
・ Inductive reasoning aptitude
・ Inductive sensor
・ Inductive set
・ Inductive transfer
Inductive type
・ Inductively coupled plasma
・ Inductively coupled plasma atomic emission spectroscopy
・ Inductively coupled plasma mass spectrometry
・ Inductivism
・ Inductor
・ Inductrack
・ Induk University
・ Indukantha ghritha
・ Indukti
・ Induktion, Varianz und Deren Folgen
・ Induku Zethu
・ Indukurupeta
・ Indulal Yagnik
・ Indulata Sukla


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Inductive type : ウィキペディア英語版
Inductive type
In type theory, a system has inductive types if it has facilities for creating a new type along with constants and functions that create terms of that type. The feature serves a role similar to data structures in a programming language and allows a type theory to add concepts like numbers, relations, and trees. As the name suggests, inductive types can be self-referential, but usually only in a way that permits structural recursion.
The standard example is encoding the natural numbers using Peano's encoding.

Inductive nat : Type :=
| 0 : nat
| S : nat -> nat.

Here, a natural number is created either from the constant "0" or by applying the function "S" to another natural number. "S" is the successor function which represents adding 1 to a number. Thus, "0" is zero, "S 0" is one, "S (S 0)" is two, "S (S (S 0))" is three, and so on.
Since their introduction, inductive types have been extended to encode more and more structures, while still being predicative and supporting structural recursion.
== Elimination ==

Inductive types usually come with a function to prove properties about them. Thus, "nat" may come with:

nat_elim : (forall P : nat -> Prop, (P 0) -> (forall n, P n -> P (S n)) -> (forall n, P n)).

This is the expected function for structural recursion for the type "nat".

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Inductive type」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.